Skip to content

feat(workflow): add SDK parity dispatch workflow#5

Open
salihguru wants to merge 1 commit intomainfrom
feat/sdk-parity
Open

feat(workflow): add SDK parity dispatch workflow#5
salihguru wants to merge 1 commit intomainfrom
feat/sdk-parity

Conversation

@salihguru
Copy link
Copy Markdown

  • Introduced a new GitHub Actions workflow for SDK parity dispatch.
  • Triggers on push and pull request events for changes in the 'lib' directory.
  • Utilizes a reusable workflow from tapsilat/tapsilat-sdk-parity.
  • Inherits secrets for secure operations.

- Introduced a new GitHub Actions workflow for SDK parity dispatch.
- Triggers on push and pull request events for changes in the 'lib' directory.
- Utilizes a reusable workflow from tapsilat/tapsilat-sdk-parity.
- Inherits secrets for secure operations.
Copilot AI review requested due to automatic review settings April 8, 2026 20:31
Copy link
Copy Markdown

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Adds a new GitHub Actions workflow to dispatch SDK parity checks whenever lib/** changes, using a reusable workflow from tapsilat/tapsilat-sdk-parity.

Changes:

  • Added sdk-parity-dispatch.yml workflow triggered on push, pull_request, and workflow_dispatch (scoped to lib/**).
  • Invokes a reusable workflow and inherits repository secrets for the run.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.


jobs:
parity-dispatch:
uses: tapsilat/tapsilat-sdk-parity/.github/workflows/reusable-sdk-parity-dispatch.yml@main
Copy link

Copilot AI Apr 8, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The reusable workflow is referenced via @main, which is a mutable ref and can change unexpectedly (and is a supply-chain risk). Prefer pinning to a version tag or a specific commit SHA (and update periodically) so runs are reproducible and safer.

Copilot uses AI. Check for mistakes.
Comment on lines +4 to +6
push:
paths:
- "lib/**"
Copy link

Copilot AI Apr 8, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

on.push currently triggers for matching lib/** changes on pushes to any branch. Other workflows in this repo (e.g., .github/workflows/ci.yml) restrict push triggers to main; if that’s the intended pattern here too, add a branches: filter to avoid running this workflow on every feature-branch push.

Copilot uses AI. Check for mistakes.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants